home *** CD-ROM | disk | FTP | other *** search
- @clear
- @echo
- @echo Setting colors.
- @echo
- @echo You can set the colors of the display with the COLOR command.
- @echo You can restore the displaycolors with the NORMAL command.
- @echo The CLEAR command clears the sceen, but it can also
- @echo be used to set the colors. Border colors can be set with the
- @echo BORDER command.
- @echo EXAMPLE
- @echo To set the display into blue letters on light grey, you could type:
- @echo COLOR blue on light_grey
- @pause
- COLOR blue on light_grey
- @pause
- @echo To clear the screen and set it to yellow on black type:
- @echo CLEAR yellow on black
- @pause
- clear yellow on black
- @pause
- @echo To restore the colors back to default values, you could type:
- @echo NORMAL
- @pause
- normal
- @pause
- @echo To set the border color to blue type:
- @echo BORDER blue
- @pause
- border blue
- @pause
- @echo Lets retore to black:
- @pause
- border black
- @echo That's all for setting colors.
- @pause
-